From da510a16e2144f3179c65448a05eaf3930421692 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 8 Jan 2009 16:53:15 +0000 Subject: [PATCH] Print domain max_pages in 'q' debug output. Signed-off-by: Keir Fraser --- xen/common/keyhandler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/common/keyhandler.c b/xen/common/keyhandler.c index e13698efdd..8118854eca 100644 --- a/xen/common/keyhandler.c +++ b/xen/common/keyhandler.c @@ -184,9 +184,9 @@ static void dump_domains(unsigned char key) printk("General information for domain %u:\n", d->domain_id); cpuset_print(tmpstr, sizeof(tmpstr), d->domain_dirty_cpumask); printk(" refcnt=%d dying=%d nr_pages=%d xenheap_pages=%d " - "dirty_cpus=%s\n", + "dirty_cpus=%s max_pages=%u\n", atomic_read(&d->refcnt), d->is_dying, - d->tot_pages, d->xenheap_pages, tmpstr); + d->tot_pages, d->xenheap_pages, tmpstr, d->max_pages); printk(" handle=%02x%02x%02x%02x-%02x%02x-%02x%02x-" "%02x%02x-%02x%02x%02x%02x%02x%02x vm_assist=%08lx\n", d->handle[ 0], d->handle[ 1], d->handle[ 2], d->handle[ 3], -- 2.30.2